Switch to Bing in English
Copilot
Your everyday AI companion
About 566,000 results
    Upvotes24Top Answeredited May 25, 2011 at 1:51

    What you need is HTML Decode, though unfortunately ASP doesn't include one.

    This function, found on ASP Nut, and modified heavily by me, should do what you need. I tested it as vbscript running on my local computer and it seemed to work well, even wi...

    Function HTMLDecode(sText)
    Dim regEx
    Dim matches
    Dim match
    sText = Replace(sText, """, Chr(34))
    sText = Replace(sText, "<" , Chr(60))
    sText = Replace(sText, ">" , Chr(62))
    sText = Replace(sText, "&" , Chr(38))
    sText = Replace(sText, " ", Chr(32))


    Set regEx= New RegExp
    Content Under CC-BY-SA license
    Was this helpful?
  1. Classic ASP (VBScript) convert HTML codes to plain text

  2. Parse html file using MSHTML in VBScript - Stack Overflow

  3. People also ask
    You can rename a *.TXT file to *.VBS but that doesn't make the content into VBScript. How to convert a TXT file into a VB script?
    EasyXLS Excel library can be used to convert Excel files in VBS. The library is a COM+ component that works without MS Excel installed. Execute the following VBS code that converts HTML file to Excel.
    For this reason, developers seeking cross-browser compatibility may convert VBS to JS, or "JavaScript," a much more widely used and compatible scripting language. This can be done using ScriptConverter, a free online tool. Open a Web browser and go to SlingFive.com/pages/code/scriptConverter/
    The Web Code Converter provides a quick easy way to convert HTML, DHTML, JavaScript, CSS and other web based languages into JavaScript, TypeScript, VBScript, LotusScript, ASP, PHP, JSP, Ruby, Rebol, Lisp, C#, Perl, and Python. It also converts Text documents to HTML.
  4. HTML To EXE - VbsEdit

  5. VBScript Functions - W3Schools

  6. VBScript HTML Encode - CodeProject

  7. VBS to HTML - Convert VBS file to HTML online

  8. Convert VBS to HTML - Free & Online

  9. Web Code Converter 1.02 Help File

  10. HTML to VBS - Convert HTML file to VBS online

  11. VbsEdit - VBScript Editor with Debugger

By using this site you agree to the use of cookies for analytics, personalized content, and ads.Learn more about third party cookies|Microsoft Privacy Policy